home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #6 / Amiga Plus CD - 1996 - No. 06.iso / multimedia / demos / jongl / floor < prev    next >
AmigaDOS Script File  |  1996-06-28  |  2KB  |  71 lines

  1. .key an/a
  2.  
  3. if <an> eq info
  4.   echo "0: floor without axes"
  5.   echo "1: floor with axes"
  6.   echo "2: floor to use with fisheye"
  7.   echo "3: filled chess floor"
  8.   echo "4: filled star floor"
  9.   echo "5: hill"
  10.   echo "6: round floor with axes"
  11.   echo "7: filled round floor"
  12.   echo "8: filled round floor with rose"
  13.   echo "9: mini floor (1 square meter)"
  14.   echo "10:great chess floor (to use with shadows)"
  15.   echo "11:giant chess floor (to slow down the program)"
  16.   quit
  17. endif
  18.  
  19.  
  20. cd o/basic
  21.  
  22. if <an> eq 0
  23.   copy karoboden_ohne_axn Karoboden
  24.   echo "floor without axes"
  25. endif
  26. if <an> eq 1
  27.   copy karoboden_mit_axn Karoboden
  28.   echo "floor with axes"
  29. endif
  30. if <an> eq 2
  31.   copy karoboden_unterteilt Karoboden
  32.   echo "floor to use with fisheye"
  33. endif
  34. if <an> eq 3
  35.   copy karoboden_schach Karoboden
  36.   echo "filled chess floor"
  37. endif
  38. if <an> eq 4
  39.   copy karoboden_Stern Karoboden
  40.   echo "filled star floor"
  41. endif
  42. if <an> eq 5
  43.   copy karoboden_Hügel Karoboden
  44.   echo "hill"
  45. endif
  46. if <an> eq 6
  47.   copy karoboden_Rund_Axn Karoboden
  48.   echo "round floor with axes"
  49. endif
  50. if <an> eq 7
  51.   copy karoboden_Rund_gefüllt Karoboden
  52.   echo "filled round floor"
  53. endif
  54. if <an> eq 8
  55.   copy karoboden_Rund_Rose Karoboden
  56.   echo "filled round floor with rose"
  57. endif
  58. if <an> eq 9
  59.   copy karoboden_Mini Karoboden
  60.   echo "mini floor (1qm)"
  61. endif
  62. if <an> eq 10
  63.   copy karoboden_gross Karoboden
  64.   echo "great chess floor (to use with shadows)"
  65. endif
  66. if <an> eq 11
  67.   copy Karoboden_fein Karoboden
  68.   echo "giant chess floor (to slow down the program)"
  69. endif
  70. cd //
  71.